home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Almathera Ten Pack 3: CDPD 3
/
Almathera Ten on Ten - Disc 3: CDPD3.iso
/
scope
/
151-175
/
scopedisk168
/
asmmacros
/
am_02
/
getstdout.i
< prev
next >
Wrap
Text File
|
1995-03-19
|
542b
|
22 lines
NOLIST
GetStdOut MACRO ; 14 Sept 88
*------------------------------; Start of GetStdOut macro.
CallLib Output,dos ; Call Output.
NOLIST
IFEQ ReEntrant-1
LIST
DefDS StdOut,1
MOVE.L D0,StdOut(A5) ; Save the file handle at StdOut.
NOLIST
ENDC
IFNE ReEntrant-1
LIST
DS_BSS StdOut,1,.L
MOVE.L D0,StdOut ; Save the file handle at StdOut.
NOLIST
ENDC
LIST
*------------------------------; End of GetStdOut macro.
ENDM
LIST